Method MigrateAsync<TProps>(IRedbService, ISqlDialectPro, Assembly, bool, string?)

Assembly: redb.Core.Pro.dll

Execute all migrations from assembly for specified Props type.
Automatically finds IRedbMigration<TProps> in assembly.
Example:
await redb.MigrateAsync<OrderProps>(dialect, typeof(OrderProps).Assembly);

public static Task<List<MigrationResult>> MigrateAsync<TProps>(this IRedbService redb, ISqlDialectPro dialect, Assembly assembly, bool dryRun = false, string? appliedBy = null) where TProps : class